html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background: #e4e4e4 !important; 
  margin: 0rem;
  padding-top: 100px;
  overflow-x: hidden;
}

* {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
}

.navbar {
  background-color: #e4e4e4 !important;
  border-bottom: 2px solid #3d3434 !important;
}

.navbar-brand h1 {
  color: #3d3434;
  font-family: "Gasoek One", sans-serif;
  font-size: 2rem;
}

.navbar-nav {
  gap: 2rem;
}

@media (min-width: 1200px) and (max-width: 1325px){
  .navbar-nav {
    gap: 0rem;
  }
}

.nav-link {
  color: #3d3434 !important;
}

.btn-custom {
  color: #fff !important;
  padding: 0.5rem 1rem;
}

.offcanvas-header {
	background-color: #e4e4e4;
}

.offcanvas-body {
	background-color: #e4e4e4;
  font-family: "Gasoek One Regular", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  color: #3d3434;
}

@media (max-width: 1199px) {
  .offcanvas-body {
    justify-content: center;
  }
}

@media (min-width: 1200px){
  .offcanvas-body {
    justify-content: end;
  }
}

@media (min-width: 320px) and (max-width: 374px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 375px) and (max-width: 424px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 425px) and (max-width: 767px){
  .offcanvas-header img {
    width: 40px;
  }
  
  .offcanvas-body a {
    font-size: 3rem;
    line-height: 0.8;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  .offcanvas-body a {
    font-size: 4rem;
    line-height: 0.8;
  }
}

@media (min-width: 1024px) and (max-width: 1199px){
  .offcanvas-body a {
    font-size: 6rem;
    line-height: 0.8;
  }
}

.modal-title {
  font-family: 'Gasoek One', sans-serif;
  font-size: 2rem;
  color: #3d3434;
}

.modal-body {
  font-family: 'Plus Jakarta Sans' sans-serif;
  font-size: 1rem;
  color: #3d3434;
}

/* COMMUNITY VIDEOS */
.cvsection {
  background: #3d3434;
}

.cvsection h2 {
  font-family: 'Gasoek One', sans-serif;
  font-size: 8rem;
  color: #e4e4e4;
  text-align: center;
  padding-bottom: 1rem;
}

.community-video-thumb-wrapper {
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-modal video {
  max-width: 90%;
  max-height: 80%;
}

/* footer */
.site-footer {
  background-color: #e4e4e4;
  border-top: 2px solid #3d3434;
  padding: 3rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  font-size: 2rem;
  font-weight: 100;
  color: #3d3434;
  font-family: 'Gasoek One', sans-serif;
  line-height: 1.4;
  list-style: none;
}

.footer-center .footer-logo {
  width: 60px;
  height: 60px;
  border: 1px solid #3d3434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3d3434;
}

.footer-logo img {
  width: 100%;
  max-width: 150px;
}

.footer-right {
  text-align: center;
  color: #3d3434;
}

.social-icons {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-icons i {
  margin: 0 0.5rem;
  cursor: pointer;
}


@media (min-width: 320px) and (max-width: 424px){
.cvsection h2 {
  font-size: 2.5rem;
 }
}

@media (min-width: 425px) and (max-width: 767px){
.cvsection h2 {
  font-size: 3.5rem;
 }
}

@media (min-width: 768px) and (max-width: 1023px){
 .cvsection h2 {
  font-size: 6rem;
 }
}

@media (min-width: 1024px) and (max-width: 1439px){

}